Revert last commit, please don't commit patches without approval, this
authorOwen Taylor <otaylor@redhat.com>
Tue, 17 Feb 2004 00:16:42 +0000 (00:16 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 17 Feb 2004 00:16:42 +0000 (00:16 +0000)
Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>

        * gdk/gdkdraw.c: Revert last commit, please don't commit patches
        without approval, this isn't the right way to do it.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkdraw.c

index 5c9ee8db83d18f50482743358de8b460b16a30b8..00262a90e022b26e9a73a700b12ec37ac57ecea6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkdraw.c: Revert last commit, please don't commit patches
+       without approval, this isn't the right way to do it.
+
 2004-02-16  DindinX  <david@dindinx.org>
 
        * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
index 5c9ee8db83d18f50482743358de8b460b16a30b8..00262a90e022b26e9a73a700b12ec37ac57ecea6 100644 (file)
@@ -1,3 +1,8 @@
+Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkdraw.c: Revert last commit, please don't commit patches
+       without approval, this isn't the right way to do it.
+
 2004-02-16  DindinX  <david@dindinx.org>
 
        * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
index 5c9ee8db83d18f50482743358de8b460b16a30b8..00262a90e022b26e9a73a700b12ec37ac57ecea6 100644 (file)
@@ -1,3 +1,8 @@
+Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkdraw.c: Revert last commit, please don't commit patches
+       without approval, this isn't the right way to do it.
+
 2004-02-16  DindinX  <david@dindinx.org>
 
        * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
index 5c9ee8db83d18f50482743358de8b460b16a30b8..00262a90e022b26e9a73a700b12ec37ac57ecea6 100644 (file)
@@ -1,3 +1,8 @@
+Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkdraw.c: Revert last commit, please don't commit patches
+       without approval, this isn't the right way to do it.
+
 2004-02-16  DindinX  <david@dindinx.org>
 
        * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
index 5c9ee8db83d18f50482743358de8b460b16a30b8..00262a90e022b26e9a73a700b12ec37ac57ecea6 100644 (file)
@@ -1,3 +1,8 @@
+Mon Feb 16 19:13:21 2004  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdkdraw.c: Revert last commit, please don't commit patches
+       without approval, this isn't the right way to do it.
+
 2004-02-16  DindinX  <david@dindinx.org>
 
        * gdk/gdkdraw.c (gdk_draw_segments): don't try to draw more than 32767
index 342a6d092603bd424f127de879245bc8004a392d..97905bf5662b782cb39f27b274b857174dca122c 100644 (file)
@@ -832,16 +832,6 @@ gdk_draw_segments (GdkDrawable *drawable,
   g_return_if_fail (GDK_IS_GC (gc));
   g_return_if_fail (nsegs >= 0);
 
-  while (num_segments >= 32000)
-    {
-      GDK_DRAWABLE_GET_CLASS (drawable)->draw_segments (drawable,
-                                                        gc, 
-                                                        segs,
-                                                        32000);
-      num_segments -= 32000;
-      segments     += 32000;
-    }
-
   GDK_DRAWABLE_GET_CLASS (drawable)->draw_segments (drawable, gc, segs, nsegs);
 }